home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / programm / mcode_01 / source / basics / putchar.s < prev    next >
Text File  |  1995-04-27  |  379b  |  13 lines

  1. * Program     : Display a character on the screen
  2. * Author    : Stephen McNabb
  3. * Creation date : 15th February 1995
  4. * Last update    : 15th February 1995
  5. * Parameters    : Character to be displayed
  6. * Output    : None
  7.  
  8. start:    move.w    #'A',-(sp)    /move 'A' onto stack
  9.     move.w    #2,-(sp)    /use Cconout() function
  10.     trap    #1        /use gemdos
  11. end:    addq.l    #4,sp        /tidy up stack
  12.  
  13. *** End of file ***